cb529bb60cd04c29732bc7916e2b318b0bbd5ce1,eclipsePlugin/src/de/tobject/findbugs/FindbugsPlugin.java,FindbugsPlugin,readBugCollectionAndProject,#IProject#IProgressMonitor#,499
Before Change
bugCollection = new SortedBugCollection();
findbugsProject = bugCollection.getProject();
bugCollection.readXML(bugCollectionFile);
cacheBugCollectionAndProject(project, bugCollection, findbugsProject);
}
After Change
bugCollection = new SortedBugCollection();
bugCollection.readXML(bugCollectionFile);
cacheBugCollectionAndProject(project, bugCollection, bugCollection.getProject());
}